home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / TVDEMO.ZIP / DEMOCMDS.PAS < prev    next >
Pascal/Delphi Source File  |  1992-10-27  |  677b  |  29 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision Demo                            }
  4. {   Copyright (c) 1990 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. unit DemoCmds;
  9.  
  10. {$D-}
  11.  
  12. interface
  13.  
  14. const
  15.   cmAbout           = 1002;
  16.   cmPuzzle          = 1003;
  17.   cmCalendar        = 1004;
  18.   cmAsciiTab        = 1005;
  19.   cmCalculator      = 1006;
  20.   cmMouse           = 1007;
  21.   cmColors          = 1008;
  22.   cmSaveDesktop     = 1010;
  23.   cmRetrieveDesktop = 1011;
  24.   cmShowClip        = 1012;
  25.  
  26. implementation
  27.  
  28. end.
  29.